home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / infosrvr / dev / www_talk.930 / 001422_daemon _Thu Jun 24 19:09:31 1993.msg < prev    next >
Internet Message Format  |  1994-01-24  |  3KB

  1. Received: by  nxoc01.cern.ch  (NeXT-1.0 (From Sendmail 5.52)/NeXT-2.0)
  2.     id AA24159; Thu, 24 Jun 93 19:09:33 MET DST
  3. Errors-To: sanders@bsdi.com
  4. Return-Path: <sanders@bsdi.com>
  5. Received: from dxmint.cern.ch by  nxoc01.cern.ch  (NeXT-1.0 (From Sendmail 5.52)/NeXT-2.0)
  6.     id AA24155; Thu, 24 Jun 93 19:09:31 MET DST
  7. Errors-To: sanders@bsdi.com
  8. Received: from austin.BSDI.COM by dxmint.cern.ch (5.65/DEC-Ultrix/4.3)
  9.     id AA24205; Thu, 24 Jun 1993 19:32:37 +0200
  10. Received: from localhost by austin.BSDI.COM (5.67/1.37)
  11.     id AA18786; Thu, 24 Jun 93 12:32:35 -0500
  12. Message-Id: <9306241732.AA18786@austin.BSDI.COM>
  13. To: www-talk@nxoc01.cern.ch
  14. Subject: Re: Simple access control 
  15. In-Reply-To: Nathan Torkington's message of Thu, 24 Jun 93 20:24:55 +1200.
  16. Errors-To: sanders@bsdi.com
  17. Reply-To: sanders@bsdi.com
  18. Organization: Berkeley Software Design, Inc.
  19. Date: Thu, 24 Jun 1993 12:32:35 -0500
  20. From: Tony Sanders <sanders@bsdi.com>
  21.  
  22. > Which servers have the ability to deny connections based on hostname?
  23.  
  24. Actually, Plexus has something like this but it was just a quick hack
  25. to play around with (it uses IP numbers right now, like I said it was
  26. just a quick hack).
  27.  
  28. It's http://www.bsdi.com/server/account.pl if anyone wants to play around
  29. with it and make it work right.
  30.  
  31. >>>>>>>
  32.  
  33. While I'm at it I'll announce Plexus 2.2-Beta which can be had from
  34. ftp://austin.bsdi.com/pub/Plexus-2.2-beta.tar.Z        (old tar format)
  35. ftp://austin.bsdi.com/pub/Plexus-2.2-beta.pax.Z        (new ustar format)
  36.  
  37. I'm running this on www.bsdi.com now and it seems to be doing just fine.
  38. Notable changes are image decoding is much better (you just define a
  39. configuration file *and* it supports rectangles, thanks to Chris McRae
  40. for doing this).  Also, Plexus 2.2-beta is ready to support format
  41. negotiation, I include a setext -> HTML converter (it currently doesn't
  42. negotiate, it just converts).  It still needs work in this area but it
  43. should be pretty easy to add new converters.
  44.  
  45. Let me know soon if you have any problems, I'll be releasing it soon.
  46.  
  47. I really think you'll like the new image decoding stuff that Chris did,
  48. it's quite easy to add image decoding now.
  49.  
  50. Changes to Plexus from Previous Versions
  51. ========================================
  52.  
  53. Plexus 2.2
  54. ----------
  55.  
  56. * added support for document translation (lots of changes in dir.pl)
  57. * added setext.pl to convert from setext (.etx) to HTML
  58. * added better image decoding support thanks to Chris McRae
  59.   <mcrae@ckm.ucsf.edu>.  You can now specify image decoding
  60.   in a configuration file ($MAP_CONFIG_FILE) and you can use
  61.   bitmasks or rectangles.  In most cases you don't have to write
  62.   any code!  Things like bookmark are more complicated and still
  63.   require code, but few things really need that.
  64. * &send_file went away and was replaced with: &wrap_file, &wrap_fd,
  65.   &raw_file, &raw_fd.   &require is certainly the only stable
  66.   interface at this point (though I don't see &raw_fd changing again).
  67.   &wrap_* will probably have to change again to make file translations
  68.   work "right".
  69. * added support for hypertext'ed man pages from pre-formatted files.
  70.   In this initial release they are specific to bsdi man pages
  71.   but should be easy to configure for your local system (most of the
  72.   config options are at the top of the bsdi-man.pl file).
  73. * added some log file summerizing scripts
  74.  
  75. --sanders